home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 11243 / 11243.xpi / chrome / skipscreen.jar / content / jqDnR.js < prev    next >
Text File  |  2009-10-13  |  1KB  |  32 lines

  1. /*
  2.  * jqDnR - Minimalistic Drag'n'Resize for jQuery.
  3.  *
  4.  * Copyright (c) 2007 Brice Burgess <bhb@iceburg.net>, http://www.iceburg.net
  5.  * Licensed under the MIT License:
  6.  * http://www.opensource.org/licenses/mit-license.php
  7.  * 
  8.  * $Version: 2007.08.19 +r2
  9.  */
  10.  
  11. (function($){
  12. $.fn.jqDrag=function(h){return i(this,h,'d');};
  13. $.fn.jqResize=function(h){return i(this,h,'r');};
  14. $.jqDnR={dnr:{},e:0,
  15. drag:function(v){
  16.  if(M.k == 'd')E.css({left:M.X+v.pageX-M.pX,top:M.Y+v.pageY-M.pY});
  17.  else E.css({width:Math.max(v.pageX-M.pX+M.W,0),height:Math.max(v.pageY-M.pY+M.H,0)});
  18.   return false;},
  19. stop:function(){E.css('opacity',M.o);$().unbind('mousemove',J.drag).unbind('mouseup',J.stop);}
  20. };
  21. var J=$.jqDnR,M=J.dnr,E=J.e,
  22. i=function(e,h,k){return e.each(function(){h=(h)?$(h,e):e;
  23.  h.bind('mousedown',{e:e,k:k},function(v){var d=v.data,p={};E=d.e;
  24.  // attempt utilization of dimensions plugin to fix IE issues
  25.  if(E.css('position') != 'relative'){try{E.position(p);}catch(e){}}
  26.  M={X:p.left||f('left')||0,Y:p.top||f('top')||0,W:f('width')||E[0].scrollWidth||0,H:f('height')||E[0].scrollHeight||0,pX:v.pageX,pY:v.pageY,k:d.k,o:E.css('opacity')};
  27.  E.css({opacity:0.8});$().mousemove($.jqDnR.drag).mouseup($.jqDnR.stop);
  28.  return false;
  29.  });
  30. });},
  31. f=function(k){return parseInt(E.css(k))||false;};
  32. })(jQuery);